home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 E…tra 100 Bedste Programmer / K-CD_2004_Ekstra_100_Gratis_Programmer.iso / Windows / X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP WebDAV BasicAuth.xpl < prev    next >
Encoding:
XSetup plugin  |  2004-04-29  |  2.6 KB  |  52 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Security\Internet"
  5. "UIPATH 2"="Appearance\Explorer\Settings (Advanced)"
  6. "UIPATH 3"="Internet\Windows Internet Components"
  7. "NAME"="WebDAV/Web Folders Basic Authentication"
  8. "VERSION"="1.02"
  9. "OSVERSION"="0000011"
  10. "LANGUAGE"="VBScript"
  11. "TEXT 1"="Allow WebDAV to use Basic Authentication"
  12. "DESCRIPTION 1"="Windows XP includes a component to access servers using WebDAV. WebDAV is a protocol to allow file access (read, write, copy, delete etc.) using HTTP that is normally only used to transport HTML files. With WebDAV you can use a server like you would with file shares (\\myserver\the_share) but instead of SMB it will use HTTP to transport the data."
  13. "DESCRIPTION 2"="WebDAV is usually used for road worriers that are behind a firewall that will only allow HTTP so SMB access to a server would normally fail. With WebDAV these persons can work with the server as if they are sitting inside the company."
  14. "DESCRIPTION 3"="However, since the password you login to a WebDAV server is the same as you use to login into the corporate network. Normally WebDAV can also use Basic Authentication which simply means: Send the password unencrypted to the server. This can be a huge security risk since the corporate network password would be transmitted unencrypted through the internet and maybe somebody will catch it."
  15. "DESCRIPTION 4"="Because of this, beginning with Windows XP SP2, Microsoft has disallowed the WebDAV client to use Basic Authentication (transmit password unencrypted). If you have secured the access to the WebDAV Server in other ways (for example using a VPN) you might simply turn this feature on again."
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.x-setup.com/"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="Win XP SP2 Release Notes: Disabling Basic Authentication over a clear channel"
  20. "COMMENT 2"=""
  21.  
  22.  
  23. 'Declaration of some constants
  24. sP="HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\UseBasicAuth" 'DW
  25.  
  26. 'Called when the Plugin is started
  27. SUB Plugin_Initialize
  28.  s=RegReadValue(sP)
  29.  if s=1 then
  30.   Call SetUIElement(1,true)
  31.  end if
  32. END SUB
  33.  
  34. 'Called when the Plugin should validate the Data the user has entered
  35. SUB Plugin_CheckData(ElementIndex)
  36. END SUB
  37.  
  38. 'Called when the Plugin should apply the changes
  39. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  s=GetUIElement(1)
  41.  if s=true then
  42.     Call RegWriteValue(sP,1,2)
  43.  else
  44.     Call RegWriteValue(sP,0,2)
  45.  end if
  46. END SUB
  47.  
  48. 'Called when the Plugin is about to be removed from memory
  49. SUB Plugin_Terminate
  50. END SUB
  51.  
  52.